home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Params / Presets.C < prev    next >
C/C++ Source or Header  |  2005-03-14  |  3KB  |  130 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Presets.C - Presets and Clipboard management
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include "Presets.h"
  24. #include <string.h>
  25.  
  26.  
  27. Presets::Presets(){
  28.     type[0]=0;
  29.     nelement=-1;
  30. };
  31.  
  32. Presets::~Presets(){
  33. };
  34.  
  35. void Presets::setpresettype(char *type){
  36.     strcpy(this->type,type);
  37. };
  38.  
  39. void Presets::copy(const char *name){
  40.     XMLwrapper *xml=new XMLwrapper();
  41.     
  42.     //used only for the clipboard
  43.     if (name==NULL) xml->minimal=false;
  44.     
  45.     char type[MAX_PRESETTYPE_SIZE];
  46.     strcpy(type,this->type);
  47.     if (nelement!=-1) strcat(type,"n");
  48.     if (name==NULL) {
  49.     if (strstr(type,"Plfo")!=NULL) strcpy(type,"Plfo");
  50.     };
  51.  
  52.     xml->beginbranch(type);
  53.     if (nelement==-1) add2XML(xml);
  54.     else add2XMLsection(xml,nelement);
  55.     xml->endbranch();
  56.  
  57.     if (name==NULL) presetsstore.copyclipboard(xml,type);
  58.     else presetsstore.copypreset(xml,type,name);
  59.     
  60.     delete(xml);
  61.     nelement=-1;
  62. };
  63.  
  64. void Presets::paste(int npreset){
  65.     char type[MAX_PRESETTYPE_SIZE];
  66.     strcpy(type,this->type);
  67.     if (nelement!=-1) strcat(type,"n");
  68.     if (npreset==0){
  69.     if (strstr(type,"Plfo")!=NULL) strcpy(type,"Plfo");
  70.     };
  71.  
  72.     XMLwrapper *xml=new XMLwrapper();
  73.     if (npreset==0){
  74.     if (!checkclipboardtype()) {
  75.         nelement=-1;
  76.         delete(xml);
  77.         return;
  78.     };
  79.     if (!presetsstore.pasteclipboard(xml)) {
  80.         delete(xml);
  81.         nelement=-1;
  82.         return;
  83.     };
  84.     } else {
  85.     if (!presetsstore.pastepreset(xml,npreset)) {
  86.         delete(xml);
  87.         nelement=-1;
  88.         return;
  89.     };
  90.     };
  91.     
  92.     if (xml->enterbranch(type)==0) {
  93.     nelement=-1;
  94.     return;
  95.     };
  96.     if (nelement==-1) {
  97.         defaults();
  98.         getfromXML(xml);
  99.     } else {
  100.         defaults(nelement);
  101.         getfromXMLsection(xml,nelement);
  102.     };
  103.     xml->exitbranch();
  104.     
  105.     delete(xml);
  106.     nelement=-1;
  107. };
  108.  
  109. bool Presets::checkclipboardtype(){
  110.     char type[MAX_PRESETTYPE_SIZE];
  111.     strcpy(type,this->type);
  112.     if (nelement!=-1) strcat(type,"n");
  113.  
  114.     return(presetsstore.checkclipboardtype(type));
  115. };
  116.  
  117. void Presets::setelement(int n){
  118.     nelement=n;
  119. };
  120.  
  121. void Presets::rescanforpresets(){
  122.     presetsstore.rescanforpresets(type);
  123. };
  124.  
  125.  
  126. void Presets::deletepreset(int npreset){
  127.     presetsstore.deletepreset(npreset);
  128. };
  129.  
  130.